home *** CD-ROM | disk | FTP | other *** search
/ Kellogg's Amérique / Kellogg's Amérique / amazonie_en_danger.swf / scripts / fl / managers / IFocusManager.as < prev    next >
Text File  |  2020-08-04  |  1KB  |  41 lines

  1. package fl.managers
  2. {
  3.    import fl.controls.Button;
  4.    import flash.display.InteractiveObject;
  5.    
  6.    public interface IFocusManager
  7.    {
  8.        
  9.       
  10.       function getFocus() : InteractiveObject;
  11.       
  12.       function deactivate() : void;
  13.       
  14.       function set defaultButton(param1:Button) : void;
  15.       
  16.       function set showFocusIndicator(param1:Boolean) : void;
  17.       
  18.       function get defaultButtonEnabled() : Boolean;
  19.       
  20.       function get nextTabIndex() : int;
  21.       
  22.       function get defaultButton() : Button;
  23.       
  24.       function get showFocusIndicator() : Boolean;
  25.       
  26.       function setFocus(param1:InteractiveObject) : void;
  27.       
  28.       function activate() : void;
  29.       
  30.       function showFocus() : void;
  31.       
  32.       function set defaultButtonEnabled(param1:Boolean) : void;
  33.       
  34.       function hideFocus() : void;
  35.       
  36.       function findFocusManagerComponent(param1:InteractiveObject) : InteractiveObject;
  37.       
  38.       function getNextFocusManagerComponent(param1:Boolean = false) : InteractiveObject;
  39.    }
  40. }
  41.